home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / SELFTREE.ZIP / selftree / examples / leafs.pov < prev    next >
Encoding:
Text File  |  1997-09-03  |  2.3 KB  |  152 lines

  1. /*
  2.  *  These are the leafs
  3.  */
  4.  
  5. #include "leafshapes.inc"
  6.  
  7. #global_settings {
  8.  assumed_gamma 1.0
  9. }
  10.  
  11. light_source { <50 , 200, -50> color rgb <0.8, 0.8,1> }
  12. light_source { <50 , 20, -50> color rgb <0.8, 0.8,1> }
  13.  
  14. camera {
  15.   up y
  16.   right 4/3*x
  17.   direction 2*z
  18.   location <0 , 0, -24>
  19.   look_at  <0 , 0, 0>
  20. }
  21.  
  22. background{color rgb <0.1, 0.1, 0>}
  23.  
  24. union {
  25.    object {
  26.       LEAF_AUTUMN_00
  27.    }
  28.    text {
  29.       ttf "timrom.ttf",
  30.       "LEAF_AUTUMN_00",
  31.       0.1, 0
  32.       pigment { color rgb <0.01,0,0.01> }
  33.       scale 0.5
  34.       rotate <0, 0, 90>
  35.       translate <1.5,0,0>
  36.    }
  37.    translate <-6.5,1,0>
  38. }
  39.  
  40. union {
  41.    object {
  42.       LEAF_AUTUMN_01
  43.    }
  44.    text {
  45.       ttf "timrom.ttf",
  46.       "LEAF_AUTUMN_01",
  47.       0.1, 0
  48.       pigment { color rgb <0.01,0,0.01> }
  49.       scale 0.5
  50.       rotate <0, 0, 90>
  51.       translate <1.5,0,0>
  52.    }
  53.    translate <-2.5,1,0>
  54. }
  55.  
  56. union {
  57.    object {
  58.       LEAF_AUTUMN_02
  59.    }
  60.    text {
  61.       ttf "timrom.ttf",
  62.       "LEAF_AUTUMN_02",
  63.       0.1, 0
  64.       pigment { color rgb <0.01,0,0.01> }
  65.       scale 0.5
  66.       rotate <0, 0, 90>
  67.       translate <1.5,0,0>
  68.    }
  69.    translate <1.5,1,0>
  70. }
  71.  
  72. union {
  73.    object {
  74.       LEAF_AUTUMN_03
  75.    }
  76.    text {
  77.       ttf "timrom.ttf",
  78.       "LEAF_AUTUMN_03",
  79.       0.1, 0
  80.       pigment { color rgb <0.01,0,0.01> }
  81.       scale 0.5
  82.       rotate <0, 0, 90>
  83.       translate <1.5,0,0>
  84.    }
  85.    translate <5.5,1,0>
  86. }
  87.  
  88.  
  89. union {
  90.    object {
  91.       LEAF_SUMMER_00
  92.    }
  93.    text {
  94.       ttf "timrom.ttf",
  95.       "LEAF_SUMMER_00",
  96.       0.1, 0
  97.       pigment { color rgb <0.01,0,0.01> }
  98.       scale 0.5
  99.       rotate <0, 0, 90>
  100.       translate <1.5,0,0>
  101.    }
  102.    translate <-6.5,-4,0>
  103. }
  104.  
  105. union {
  106.    object {
  107.       LEAF_SUMMER_01
  108.    }
  109.    text {
  110.       ttf "timrom.ttf",
  111.       "LEAF_SUMMER_01",
  112.       0.1, 0
  113.       pigment { color rgb <0.01,0,0.01> }
  114.       scale 0.5
  115.       rotate <0, 0, 90>
  116.       translate <1.5,0,0>
  117.    }
  118.    translate <-2.5,-4,0>
  119. }
  120.  
  121. union {
  122.    object {
  123.       LEAF_SUMMER_02
  124.    }
  125.    text {
  126.       ttf "timrom.ttf",
  127.       "LEAF_SUMMER_02",
  128.       0.1, 0
  129.       pigment { color rgb <0.01,0,0.01> }
  130.       scale 0.5
  131.       rotate <0, 0, 90>
  132.       translate <1.5,0,0>
  133.    }
  134.    translate <1.5,-4,0>
  135. }
  136.  
  137. union {
  138.    object {
  139.       LEAF_SUMMER_03
  140.    }
  141.    text {
  142.       ttf "timrom.ttf",
  143.       "LEAF_SUMMER_03",
  144.       0.1, 0
  145.       pigment { color rgb <0.01,0,0.01> }
  146.       scale 0.5
  147.       rotate <0, 0, 90>
  148.       translate <1.5,0,0>
  149.    }
  150.    translate <5.5,-4,0>
  151. }
  152.